:root {
    --primary-color: #6b2c91;
    --secondary-color: #f0f0f0;
    --text-color: #333;
    --white: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

.container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 60px;
    background-color: var(--text-color);
    padding: 20px 0;
}

.sidebar nav ul {
    list-style-type: none;
}

.sidebar nav ul li {
    margin-bottom: 20px;
}

.sidebar nav ul li a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    text-align: center;
    line-height: 40px;
    margin: 0 auto;
}

.sidebar nav ul li a.active {
    background-color: var(--white);
    color: var(--primary-color);
}

.main-content {
    flex-grow: 1;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.search-bar {
    flex-grow: 1;
    max-width: 600px;
    background-color: var(--white);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
}

.search-bar input {
    flex-grow: 1;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
}

.search-bar button {
    background-color: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.profile {
    display: flex;
    align-items: center;
}

.h2, h3 {
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    text-align: center;
    cursor: pointer;
}

.service-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.location-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-option {
    background-color: #d3d3d3;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}

.location-option strong {
    display: block;
    margin-bottom: 5px;
}
